home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / stdlib / abort.c next >
C/C++ Source or Header  |  1994-08-19  |  197b  |  13 lines

  1. #define KERNEL
  2. #include "ixemul.h"
  3.  
  4. void 
  5. abort (void)
  6. {
  7.   syscall (SYS_kill, 0, SIGABRT);
  8.   /* if this should be caught, do exit directly... */
  9.  
  10.   ix_panic ("ABORT!");
  11.   syscall (SYS_exit, 20);
  12. }
  13.